home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / OS / FWToolbx / Include / PRCursor.h < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.1 KB  |  47 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                PRCursor.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef PRCURSOR_H
  11. #define PRCURSOR_H
  12.  
  13. #ifndef FWCURSOR_K
  14. #include "FWCursor.k"
  15. #endif
  16.  
  17. //========================================================================================
  18. // Cursor API
  19. //========================================================================================
  20.  
  21. // Export or Import functions for CFM-68K [sfu]
  22.  
  23. #if defined(FW_ODFLIB_IMPORT)
  24. #pragma import on
  25. #elif defined(FW_ODFLIB)
  26. #pragma export on
  27. #endif
  28.  
  29. FW_EXTERN_C_BEGIN
  30.  
  31. FW_PlatformCursorHandle SL_API FW_PrivLoadCursor(Environment* ev, 
  32.                                     FW_Instance instance,
  33.                                     FW_CursorID cursorID, 
  34.                                     FW_Boolean& isMacColorCursor);
  35.                                     
  36. FW_EXTERN_C_END
  37.  
  38. // For CFM-68K [sfu]
  39.  
  40. #if defined(FW_ODFLIB_IMPORT)
  41. #pragma import off
  42. #elif defined(FW_ODFLIB)
  43. #pragma export off
  44. #endif
  45.  
  46. #endif
  47.